home *** CD-ROM | disk | FTP | other *** search
- @rem
- @rem
- @rem Copyright (c) 1991-1996 Eclectus (D. John Anderson, Alan B. Harper).
- @rem
- @rem WinMergeTest.bat
- @rem
-
- @echo ***********************
- @echo ** DEBUG MERGE TESTS **
- @echo ***********************
-
- @SET DERIVED_DIR=MergeD.i
-
- @echo on
- %DERIVED_DIR%\Merge -x -X testfile0 testfile1 testfile2 testfile3 testfile4 %DERIVED_DIR%\testfile.out
- FC /L %DERIVED_DIR%\!testfile.out testfile.merge
- rm -rf %DERIVED_DIR%\testd.out
- %DERIVED_DIR%\Merge -x -X testd0 testd1 testd2 testd3 testd4 %DERIVED_DIR%\testd.out
- Difference %DERIVED_DIR%\testd.out testd.win.merge >%DERIVED_DIR%\testd.check
- @echo off
- if ERRORLEVEL==1 echo **************************
- if ERRORLEVEL==1 echo ** DEBUG MERGE FAILURE! **
- if ERRORLEVEL==1 echo **************************
- if ERRORLEVEL==1 goto End
-
- @echo *************************
- @echo ** RELEASE MERGE TESTS **
- @echo *************************
-
- @SET DERIVED_DIR=MergeR.i
-
- @echo on
- %DERIVED_DIR%\Merge testfile0 testfile1 testfile2 testfile3 testfile4 %DERIVED_DIR%\testfile.out
- FC /L %DERIVED_DIR%\!testfile.out testfile.merge
- rm -rf %DERIVED_DIR%\testd.out
- %DERIVED_DIR%\Merge testd0 testd1 testd2 testd3 testd4 %DERIVED_DIR%\testd.out
- Difference %DERIVED_DIR%\testd.out testd.win.merge >%DERIVED_DIR%\testd.check
- @echo off
- if ERRORLEVEL==1 echo ****************************
- if ERRORLEVEL==1 echo ** RELEASE MERGE FAILURE! **
- if ERRORLEVEL==1 echo ****************************
- if ERRORLEVEL==1 goto End
-
- :End